QuickOPC User's Guide and Reference
TypedAttributeData Property (UAAttributeDataResult<T>)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.Generic Namespace > UAAttributeDataResult<T> Class : TypedAttributeData Property
Gets or sets a UAAttributeData<TValue> (value, timestamps and status code) that is a successful result of the operation.
Syntax
'Declaration
 
<CanBeNullAttribute()>
<DefaultValueAttribute("")>
Public Property TypedAttributeData As UAAttributeData(Of T)
'Usage
 
Dim instance As UAAttributeDataResult(Of T)
Dim value As UAAttributeData(Of T)
 
instance.TypedAttributeData = value
 
value = instance.TypedAttributeData
[CanBeNull()]
[DefaultValue("")]
public UAAttributeData<T> TypedAttributeData {get; set;}
[CanBeNull()]
[DefaultValue("")]
public:
property UAAttributeData<T^>^ TypedAttributeData {
   UAAttributeData<T^>^ get();
   void set (    UAAttributeData<T^>^ value);
}

Property Value

Contains a null reference, when System.Exception is not null. Contains a non-null object when System.Exception is null.
Remarks
The property has a different name from the base class in order to satisfy StreamInsight serialization limitations.
Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also